home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 005 / smplcalc.arc / README < prev    next >
Encoding:
Text File  |  1987-05-13  |  2.3 KB  |  63 lines

  1. All users need a calculator program, and while there are several others
  2. available, I found none with the features I wanted: SIMPLICITY, base
  3. conversion, a record of the calculation, and some transcendental functions.
  4. These two have been used extensively for over a year by me and a few friends. 
  5. Direct questions or comments to Mike Sperl, 615 E. 68th St., Richfield,
  6. MN  55423   (612)-869-1830.  A postcard or note would be appreciated.
  7. No money, please.
  8.  
  9. Use <ctl>C to exit either program.
  10.  
  11. SCALC.EXE ,the small one, is great for doing check-book balancing. It works 
  12. like an old fashioned adding machine with a tape. I use Fansi-Console's 
  13. scroll-back feature, but backscroll works as well, and either can print the 
  14. "tape", so the calculator programs aren't complicated with printer code.  
  15. Actually, <ctl>P should get a printout also, if pressed before starting the 
  16. calculation, but I haven't used it. To subtract, preceed each number with
  17. a minus sign.
  18.  
  19. HP.EXE is an RPN free format calculator with a stack limited only by available 
  20. memory.  It's output is non-destructive, except when converting to a base 
  21. other than hex or decimal.  The stack can be shown at any time.  The top two 
  22. stack items can be swapped and/or the top item dropped ala forth.  Delimiters 
  23. (space or <cr> ) are not required except, of course, between numbers, which 
  24. can be printed in any base but which must be entered in decimal or hex.  Enter 
  25. each hex number preceeded by an x, as x1234 (only integers in hex, upto 8 
  26. digits).  16 decimal digit accuracy is claimed by the compiler (Eco-C) used.  
  27. Tap '?' in HP.EXE at any time to review the keystrokes and functions 
  28. available.  Remember to place the operators AFTER the numbers, as: 
  29.  
  30. 123.45 -2.567*=   or,  123.45-2.567*=   -> -316.896150
  31.  
  32. 12.5 -3.56+ 156.789+ 45.001+=   or,   12.5-3.56+156.789+45.001+=
  33. or,
  34.  
  35. 123.4567
  36. 34.5678-
  37. 45.123+=
  38. or,
  39.  
  40. 123.4
  41.  34.6
  42.   5.01
  43. ++=
  44. Some other useful keystrokes:
  45.  
  46. x400
  47. =    -> 1024.000000
  48. h    -> 400H
  49.  
  50. 2 2b  -> 10          ;base 2
  51. 257 3b  -> 100112    ;base 3
  52. 259 4b  -> 10003     ;base 4
  53. 295 8b  -> 447       ;octal
  54. x21
  55. 2b      -> 100001    ;hex to binary
  56.  
  57. 5.0e-2 e=  ->  1.051271    (scientific notation, exponential fn)
  58.  
  59. 7.2e-2 10* e=  ->  2.054433  (the compound interest formula)
  60.  
  61.  
  62.  
  63.